/* ------------ Allgemeine Formatierung -------------- */
* {
  margin: 0px;
  padding: 0px;
}
h2 {
  font-size: 35px;
  color: darkblue;
}
h3 {
  font-family: impact, arial, sans-serif;
  font-size: 28px;
  color: darkblue;
  text-transform: uppercase;
  font-weight: normal;
}
h4 {
  font-family: arial, sans-serif;
  font-size: 18px;
  color: lightblue;
  text-transform: uppercase;
  font-weight: bold;
}
h5 {
  font-family: arial, sans-serif;
  font-size: 15px;
  color: lightblue;
  text-transform: uppercase;
  font-weight: bold;
}

h7{
  font-size: 20px;
}

#Bali{
  color: rgb(255, 166, 0);
  border: 3px solid darkgreen;
  border-radius: 10px;
  margin: 0 auto;
  text-align: center;
  width: 1010px;
  height: 150px;
  padding-top: 80px;
  background-image: url(images/Bali-bkgnd.jpg);

  background-blend-mode:darken;
  background-repeat: no-repeat;
}
#reiseplaner {
  font-size: 50px;
  padding: 20px;
  border: 2px solid darkblue;
  border-radius: 25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 500px;
  background-color: rgba(255, 255, 255, 0.5);
}
#obenunten {
  float: right;
  text-decoration: none;
  font-size: 40px;
  padding-right: 10px;
  color: darkblue;
}
a {
  text-decoration: none;
  color: rgb(33, 111, 147);
}
a:hover {
  color: rgb(53, 191, 255);
}
.menu {
  position: absolute;
  right: 20px;
  top: 15px;
  padding-right: 30px;
}
.menu-button {
  background: #fff;
  color: darkblue;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  border: 1px solid white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-button:hover {
  background: lightblue;
}
.menu-content {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.menu-content a {
  display: block;
  padding: 10px 20px;
  color: darkblue;
  text-decoration: none;
}
.menu-content a:hover {
  background: lightblue;
}
nav {
  margin-top: 60px;
  text-align: center;
  background: #f1f1f1;
  padding: 10px;
}
button {
  margin: 10px;
}
article {
  color: black;
  line-height: 22px;
}
#bild {
  margin: 60px;
  margin-bottom: 0px;
}
#articleüberschrift {
  margin: 0px auto;
  padding-top: 40px;
  text-align: center;
  color: darkblue;
  font-size: 20px;
}
article img {
  width: 100%;
  border: 1px solid darkblue;
  border-radius: 25px;
  box-shadow: 0px 4px 6px rgba(31, 29, 29, 0.1);
}
#bewertungen {
  min-height: 600px;
}
#bewertungen-Oben {
  min-height:295px;
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
  text-align: center;
  max-width: 2200px;
}
.personen {
  height: 240px;
  width: 300px;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 30px;
  box-shadow: 4px 5px 10px rgba(61, 155, 231);
  line-height: 15px;
}

main a{
  color: black;

}
main a:hover {
  color: rgb(0, 0, 0);

}
.personen img {
  float: inline-end;
  width: 60px;
  height: 40px;
}
.personen hr{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ------------ Allgemeine Klassen ------------------- */
.clearing{
  clear: both;
}
html {
  scroll-behavior: smooth;
}
/* ---------------------- BOXEN ----------------------- */
body {
  font-family: Arial, Calibri, sans-serif;
  font-size: 15px;
  color: #585857;
  margin: 0;
}
header {
  height: 50px;
  padding: 20px;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
header.hidden {
  transform: translateY(-100%);
}
header img {
  height: 50px;
  float: left;
  padding-right: 8px;
}
main {
  margin: 100px 0px;
  background-color: rgba(255, 255, 255, 0);
}
footer {
  background-color: #449fca;
  padding: 10px;
  min-height: 150px;
  font-size: 16px;
  color: white;
  border-top: 20px solid lightblue;
  border-bottom: 20px solid lightblue;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
.footer-section {
  flex: 1;
  padding: 10px;
}
.footer-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-section p {
  margin: 5px 0;
  font-size: 20px;
  padding: 2px;
}
footer a {
  color: white;
}